🎖️GitЯра🎖️
Commit 991578ab3c2c64139fa5d2a2b11cd1aae7409d6a
Parents : 7a42a34
Author : James Rich <2199651+jamesarich@users.noreply.github.com>
Signature : Signature validation error
Date : 2026-08-11T11:07:43-07:00
Committer : GitHub <noreply@github.com>
Date : 2026-08-11T13:07:43-05:00
fix(build): pin Gradle back to 9.6.1 to unbreak desktop ProGuard (#6611)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Changes
2 files changed, 11 insertions(+), 2 deletions(-)
Diff
diff --git a/.github/renovate.json b/.github/renovate.json
index 27ab5bde79..2ebf9b5168 100644
--- a/.github/renovate.json
+++ b/.github/renovate.json
@@ -94,6 +94,13 @@
],
"automerge": false
},
+ {
+ "description": "Block Gradle 9.7.0: its ExecOperations.exec spec defaults standardOutput to null, crashing the Compose Multiplatform proguardReleaseJars task (ExternalToolRunner reads the stream back). Lift once a fixed Gradle patch or a CMP release that stops reading spec.standardOutput is out.",
+ "matchManagers": [
+ "gradle-wrapper"
+ ],
+ "allowedVersions": "!/^9\\.7\\.0$/"
+ },
{
"description": "Disable automerge for major updates (safety net)",
"matchUpdateTypes": [
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 63232e1d10..f1006b3955 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -2,8 +2,10 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
# -bin: nothing here reads -all's docs/sources. Update sha256 with the URL on upgrades
# (official .sha256 sits next to the distribution; renovate does both).
-distributionSha256Sum=84fbba45c7f4c64abc77460e1c00f541e9f960e3c7ed2538f1ede19eacd873ae
-distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip
+# Pinned back to 9.6.1: Gradle 9.7.0's ExecOperations.exec spec defaults standardOutput to
+# null, which crashes CMP's proguardReleaseJars (ExternalToolRunner reads it back).
+distributionSha256Sum=9c0f7faeeb306cb14e4279a3e084ca6b596894089a0638e68a07c945a32c9e14
+distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=30000
retries=3
retryBackOffMs=500
Served by rngit 1.5.0 - Generated in 0.07s